home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Comm / www / tidy_os4.lha / tidy / src / entities.h < prev    next >
C/C++ Source or Header  |  2004-07-25  |  568b  |  25 lines

  1. #ifndef __ENTITIES_H__
  2. #define __ENTITIES_H__
  3.  
  4. /* entities.h -- recognize character entities
  5.  
  6.   (c) 1998-2003 (W3C) MIT, ERCIM, Keio University
  7.   See tidy.h for the copyright notice.
  8.  
  9.   CVS Info :
  10.  
  11.     $Author: hoehrmann $ 
  12.     $Date: 2003/05/25 03:22:20 $ 
  13.     $Revision: 1.6 $ 
  14.  
  15. */
  16.  
  17. #include "forward.h"
  18.  
  19. /* entity starting with "&" returns zero on error */
  20. uint    EntityCode( ctmbstr name, uint versions );
  21. ctmbstr EntityName( uint charCode, uint versions );
  22. Bool    EntityInfo( ctmbstr name, Bool isXml, uint* code, uint* versions );
  23.  
  24. #endif /* __ENTITIES_H__ */
  25.